:root {
            --primary: #4361ee;
            --primary-dark: #3a56d4;
            --primary-light: #7289f9;
            --secondary: #f72585;
            --secondary-dark: #e91c7b;
            --secondary-light: #ff5da2;
            --accent: #7209b7;
            --dark: #1e293b;
            --dark-light: #334155;
            --light: #f8fafc;
            --light-dark: #e2e8f0;
            --gray: #94a3b8;
            --success: #10b981;
            --warning: #f59e0b;
            --danger: #ef4444;
            --border-radius: 12px;
            --border-radius-sm: 8px;
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --transition: all 0.3s ease;
            --font-sans: 'Poppins', sans-serif;
            --font-serif: 'Playfair Display', serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-sans);
            color: var(--dark);
            background-color: #f9fafb;
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            transition:  all 0.3s ease;
        }

        .header.scrolled {
            padding: 10px 0;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color:  #4361ee;;
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Playfair Display', serif;
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-link {
            font-weight: 500;
            position: relative;
            padding: 5px 0;
            transition:  all 0.3s ease;
        }

        .nav-link:hover {
            color:  #4361ee;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background:  #4361ee;
            transition:  all 0.3s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .mobile-nav-link:hover::after,
        .mobile-nav-link.active::after {
            width: 100%;

        }

        .nav-link.active,
        .mobile-nav-link.active {
            color:  #4361ee;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: #1e293b;
            cursor: pointer;
        }

        /* Profile Button */
        .profile-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            background: white;
            border: none;
            padding: 9px 14px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 500;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .profile-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        .profile-avatar, .profile-img {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            object-fit: cover;
            background: #4f46e5;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 16px;
        }

        .auth-container {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .auth-btn {
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 500;
            transition:  all 0.3s ease;
            border: none;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
        }

        .sign-in-btn {
            background: transparent;
            color:  #4361ee;
            border: 1px solid  #4361ee;
        }

        .sign-in-btn:hover {
            background: #4361ee;
            color: white;
        }

        .sign-up-btn {
            background:  #4361ee;
            color: white;
        }

        .sign-up-btn:hover {
            background:  #3a56d4;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 400px;
            height: 100%;
            background-color: #ffffff;
            z-index: 9999;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            transition: right 0.3s ease-in-out;
            box-shadow:  0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .mobile-menu-close {
            background: transparent;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .mobile-nav {
            flex: 1;
        }

        .mobile-nav-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .mobile-nav-link {
            font-size: 1.1rem;
            font-weight: 500;
        }

        .mobile-nav-link.active {
            color:  #4361ee;
        }

        /* Mobile Profile Section */
        .mobile-profile-section {
            padding: 0.5rem 0;
            margin: 1rem 0;
            margin-top: 0rem;
            /*border-top: 1px solid  #e2e8f0;
            border-bottom: 1px solid  #e2e8f0;*/
        }

        .mobile-profile-section .profile-btn {
            width: 90%;
            justify-content: flex-start;
            padding: 2px;
            margin-bottom: 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border: 1px solid #dee2e6;
        }

        .mobile-profile-section .profile-btn:hover {
            background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
            transform: translateY(-1px);
        }

        .mobile-profile-section .profile-avatar,
        .mobile-profile-section .profile-img {
            width: 45px;
            height: 45px;
            font-size: 18px;
        }

        .mobile-profile-info {
            flex: 1;
            text-align: left;
        }

        .mobile-profile-info h3 {
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
            color:#1e293b;
        }

        .mobile-profile-info p {
            font-size: 0.9rem;
            color: #94a3b8;
            margin: 0;
        }

        /* Mobile Auth Section for non-logged users */
        .mobile-auth-section {
            margin: 1rem 0;
            margin-top:1rem;
            border-top: 1px solid  #e2e8f0;
            border-bottom: 1px solid  #e2e8f0;
            text-align: center;
        }

        .mobile-auth-section .auth-btn {
            width: 100%;
            margin-bottom: 10px;
            padding: 9px 15px;
            font-size: 16px;
        }

        .mobile-menu-footer {
            margin-top: 2rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #f9fafb;
            color: #4361ee;
            transition:  all 0.3s ease;
        }

        .social-link:hover {
            background-color: #4361ee;
            color: #ffffff;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 25px;
            background: #4361ee;
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition:  all 0.3s ease;
            text-align: center;
        }

        .btn:hover {
            background:  #3a56d4;
            transform: translateY(-3px);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }

        .btn.secondary {
            background: #f72585;
        }

        .btn.secondary:hover {
            background:  #e91c7b;
        }

        .btn.outline {
            background: transparent;
            border: 2px solid  #4361ee;
            color:  #4361ee;
        }

        .btn.outline:hover {
            background:  #4361ee;
            color: white;
        }

        .btn-primary {
            background-color:  #4361ee;
            color: #ffffff;
        }

        .btn-primary:hover {
            background-color:  #3a56d4;
        }

        .btn-block {
            width: 100%;
        }

        /* Profile Slide Panel */
        .profile-slide {
            position: fixed;
            top: 0;
            right: -400px;
            width: 400px;
            height: 100vh;
            background: white;
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
            transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 1001;
            overflow-y: auto;
        }

        .profile-slide.active {
            right: 0;
        }

        .profile-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 30px 20px;
            position: relative;
        }

        .close-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }

        .close-btn:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .profile-info {
            text-align: center;
        }

        .profile-picture {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 3px solid white;
            margin-bottom: 15px;
            object-fit: cover;
            background: #4f46e5;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 28px;
            margin: 0 auto 15px;
        }

        .username {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .membership-badge {
            display: inline-block;
        }

        .badge {
            background: rgba(255, 255, 255, 0.2);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            backdrop-filter: blur(10px);
        }

        .profile-content {
            padding: 30px 20px;
        }

        .info-section {
            margin-bottom: 30px;
        }

        .info-section h3 {
            color: #333;
            margin-bottom: 10px;
            font-size: 18px;
        }

        .info-section p {
            color: #666;
            line-height: 1.6;
            font-size: 14px;
        }

        .details-section {
            margin-bottom: 30px;
        }

        .details-toggle {
            width: 100%;
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            padding: 15px 20px;
            border-radius: 10px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 16px;
            font-weight: 500;
            color: #333;
            transition: all 0.3s ease;
        }

        .details-toggle:hover {
            background: #e9ecef;
        }

        .arrow {
            transition: transform 0.3s ease;
        }

        .arrow.rotated {
            transform: rotate(180deg);
        }

        .details-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            background: #f8f9fa;
            border-radius: 0 0 10px 10px;
        }

        .details-content.expanded {
            max-height: 400px;
            padding: 20px;
            border: 1px solid #e9ecef;
            border-top: none;
        }

        .detail-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #e9ecef;
        }

        .detail-item:last-child {
            border-bottom: none;
        }

        .detail-item label {
            font-weight: 500;
            color: #555;
            font-size: 14px;
        }

        .detail-item span {
            color: #333;
            font-size: 14px;
        }

        .status-badge {
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: 500;
        }

        .status-badge.verified {
            background: #d4edda;
            color: #155724;
        }

        .status-badge.unverified {
            background: #f8d7da;
            color: #721c24;
        }

        .actions-section {
            display: flex;
            gap: 10px;
        }

        .action-btn {
            flex: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .action-btn.primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .action-btn.primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }

        .action-btn.secondary {
            background: #f8f9fa;
            color: #333;
            border: 1px solid #e9ecef;
        }

        .action-btn.secondary:hover {
            background: #e9ecef;
        }

        /* Edit Profile Modal */
        .edit-modal {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.9);
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            z-index: 1002;
            width: 90%;
            max-width: 400px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .edit-modal.active {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, -50%) scale(1);
        }

        .edit-modal h3 {
            margin-bottom: 20px;
            color: #333;
            font-size: 20px;
            text-align: center;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #555;
            font-size: 14px;
        }

        .form-group input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #e9ecef;
            border-radius: 8px;
            font-size: 14px;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus {
            outline: none;
            border-color: #667eea;
        }

        .modal-actions {
            display: flex;
            gap: 10px;
        }

        .modal-actions button {
            flex: 1;
            padding: 12px 0;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .modal-actions .save-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .modal-actions .save-btn:hover {
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }

        .modal-actions .cancel-btn {
            background: #f8f9fa;
            color: #333;
            border: 1px solid #e9ecef;
        }

        .modal-actions .cancel-btn:hover {
            background: #e9ecef;
        }

        /* Overlay */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .overlay.active {
            opacity: 1;
        }

        /* Hero Section */
        .home {
            padding: 180px 0 100px;
            position: relative;
            background: linear-gradient(135deg, #f9fafb 0%, #eef2ff 100%);
            overflow: hidden;
        }

        .home::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: var(--primary-light);
            border-radius: 50%;
            opacity: 0.1;
            z-index: 0;
        }

        .home::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            background: var(--secondary-light);
            border-radius: 50%;
            opacity: 0.1;
            z-index: 0;
        }

        .home-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .home-content {
            max-width: 600px;
        }

        .home-content h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--dark);
            font-family: var(--font-serif);
            line-height: 1.2;
            animation: fadeInUp 1s ease;
        }

        .text-head {
            margin-bottom: 20px;
        }

        .text-head h3 {
            font-size: 20px;
            color: var(--primary);
            font-weight: 500;
            animation: fadeInUp 1s ease 0.2s forwards;
            opacity: 0;
        }

        .home-content p {
            margin-bottom: 30px;
            color: var(--dark-light);
            animation: fadeInUp 1s ease 0.4s forwards;
            opacity: 0;
        }

        .home-image {
            position: relative;
            animation: float 4s ease-in-out infinite;
        }

        .home-image img {
            max-width: 100%;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-lg);
        }

        .button-container {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 30px;
            animation: fadeInUp 1s ease 0.6s forwards;
            opacity: 0;
        }

        /* Social Media Section */
        .social-section {
            padding: 80px 0;
            background-color: white;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-subtitle {
            font-size: 16px;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .section-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
            font-family: var(--font-serif);
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            border-radius: 2px;
        }

        .section-description {
            font-size: 18px;
            color: var(--dark-light);
            max-width: 700px;
            margin: 0 auto;
        }

        .social-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .social-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .social-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .social-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin: 0 auto 20px;
        }

        .social-card:nth-child(2) .social-icon {
            background: linear-gradient(135deg, #1877f2, #0a54c0);
        }

        .social-card:nth-child(3) .social-icon {
            background: linear-gradient(135deg, #0088cc, #005f8c);
        }

        .social-card:nth-child(4) .social-icon {
            background: linear-gradient(135deg, #000000, #333333);
        }

        .social-card:nth-child(5) .social-icon {
            background: linear-gradient(135deg, #e1306c, #c13584);
        }

        .social-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .social-count {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .social-label {
            color: var(--gray);
            font-size: 14px;
        }

        /* Community Section */
        .community-section {
            padding: 80px 0;
            background-color: #f9fafb;
        }

        .community-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .community-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .community-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .community-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .community-content {
            padding: 25px;
            text-align: center;
        }

        .community-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .community-description {
            color: var(--dark-light);
            margin-bottom: 20px;
        }

        /* Visa Process Section */
        .visa-section {
            padding: 100px 0;
            background-color: white;
            position: relative;
            overflow: hidden;
        }

        .visa-section::before {
            content: '';
            position: absolute;
            top: -150px;
            right: -150px;
            width: 300px;
            height: 300px;
            background: var(--primary-light);
            border-radius: 50%;
            opacity: 0.05;
        }

        .visa-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .visa-content {
            max-width: 600px;
        }

        .visa-image {
            position: relative;
            margin-top: -10rem;
        }

        .visa-image img {
            max-width: 100%;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-lg);
        }

        .points-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .point {
            background: white;
            border-radius: var(--border-radius);
            padding: 25px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--primary);
        }

        .point:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .point:nth-child(2) {
            border-top-color: var(--secondary);
        }

        .point:nth-child(3) {
            border-top-color: var(--accent);
        }

        .point-icon {
            font-size: 30px;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .point:nth-child(2) .point-icon {
            color: var(--secondary);
        }

        .point:nth-child(3) .point-icon {
            color: var(--accent);
        }

        .point-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .point-description {
            color: var(--dark-light);
        }

        /* Universities Section */
        .universities-section {
            padding: 100px 0;
            background-color: #f9fafb;
            position: relative;
        }

        .universities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .university-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .university-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .university-header {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            padding: 20px;
            text-align: center;
        }

        .university-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .university-location {
            font-size: 14px;
            opacity: 0.9;
        }

        .university-body {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .university-requirements {
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .university-requirement {
            display: flex;
            margin-bottom: 10px;
        }

        .university-requirement-label {
            font-weight: 600;
            min-width: 120px;
        }

        .university-requirement-value {
            color: var(--dark-light);
        }

        .university-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--primary);
            color: white;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            transition: var(--transition);
            margin-top: auto;
            width: 100%;
        }

        .university-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        .view-more-btn {
            display: block;
            width: 100%;
            max-width: 300px;
            margin: 50px auto 0;
            padding: 15px 30px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }

        .view-more-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        /* E-Book Section */
        .ebook-section {
            padding: 100px 0;
            background-color: white;
            position: relative;
            overflow: hidden;
        }

        .ebook-section::before {
            content: '';
            position: absolute;
            top: -150px;
            right: -150px;
            width: 300px;
            height: 300px;
            background: var(--primary-light);
            border-radius: 50%;
            opacity: 0.05;
        }

        .ebook-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .ebook-image {
            position: relative;
            text-align: center;
        }

        .ebook-image img {
            max-width: 70%;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
            margin: 0 auto;
        }

        .ebook-image img:hover {
            transform: translateY(-10px) rotate(2deg);
        }

        .ebook-content {
            max-width: 500px;
        }

        .ebook-label {
            display: inline-block;
            background: rgba(79, 70, 229, 0.1);
            color: var(--primary);
            padding: 6px 15px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .ebook-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 10px;
            line-height: 1.3;
            font-family: var(--font-serif);
        }

        .ebook-subtitle {
            font-size: 18px;
            color: var(--gray);
            margin-bottom: 20px;
        }

        .ebook-description {
            color: var(--dark-light);
            margin-bottom: 30px;
        }

        .ebook-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--primary);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            transition: var(--transition);
        }

        .ebook-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        /* Resources Section */
        .resources-section {
            padding: 100px 0;
            background-color: #f9fafb;
            position: relative;
        }

        .resources-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .resource-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .resource-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .resource-img-container {
            height: 150px;
            overflow: hidden;
        }

        .resource-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .resource-card:hover .resource-img {
            transform: scale(1.05);
        }

        .resource-content {
            padding: 20px;
            text-align: center;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .resource-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .resource-description {
            color: var(--dark-light);
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .resource-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--primary);
            color: white;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            transition: var(--transition);
            margin-top: auto;
        }

        .resource-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        .resources-btn {
            display: block;
            width: 100%;
            max-width: 300px;
            margin: 50px auto 0;
            padding: 15px 30px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }

        .resources-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        /* Footer */
        .footer {
            background: var(--dark);
            color: white;
            padding: 80px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-logo {
            font-size: 24px;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-serif);
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .footer-social-link {
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: var(--transition);
        }

        .footer-social-link:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }

        .footer-contact li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .footer-contact-icon {
            color: var(--primary);
            font-size: 18px;
            margin-top: 3px;
        }

        .footer-contact-text {
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-form {
            margin-top: 20px;
        }

        .footer-form-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .footer-form-input {
            width: 100%;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--border-radius-sm);
            color: white;
            margin-bottom: 10px;
            font-family: var(--font-sans);
            outline: none;
            transition: var(--transition);
        }

        .footer-form-input:focus {
            border-color: var(--primary);
        }

        .footer-form-btn {
            width: 100%;
            padding: 12px 15px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: var(--border-radius-sm);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .footer-form-btn:hover {
            background: var(--primary-dark);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.7;
        }

        .footer-legal {
            display: flex;
            gap: 1.5rem;
        }

        /* Chat Widget */
        .chat-container {
            position: fixed;
            bottom: 10px;
            right: 10px;
            width: 300px;
            max-height: 700px;
            background-color: #fff;
            border: 1px solid #ccc;
            border-radius: 8px;
            display: none;
            flex-direction: column;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            z-index: 9999;
            transition: all 0.3s ease;
        }

        .chat-container.active {
            display: flex;
        }

        .chat-header {
            display: flex;
            justify-content: space-between;
            padding: 10px;
            background-color: #4CAF50;
            color: white;
            border-radius: 8px 8px 0 0;
        }

        .chat-title {
            display: flex;
            align-items: center;
        }

        .chat-close {
            background: transparent;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
        }

        .chat-messages {
            flex-grow: 1;
            padding: 10px;
            overflow-y: auto;
            max-height: 400px;
        }

        .chat-message {
            padding: 10px;
            border-radius: 5px;
            margin-bottom: 10px;
            background-color: #f1f1f1;
            max-width: 80%;
        }

        .chat-message.user {
            background-color: #e0f7fa;
            margin-left: auto;
            text-align: right;
        }

        .chat-message.bot {
            background-color: #f1f8e9;
            text-align: left;
        }

        .chat-input-container {
            display: flex;
            padding: 10px;
            background-color: #f9f9f9;
            border-radius: 0 0 8px 8px;
            align-items: center;
            border-top: 1px solid #ccc;
        }

        .chat-input {
            flex-grow: 1;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 14px;
        }

        .chat-send {
            background-color: #4CAF50;
            color: white;
            border: none;
            padding: 10px;
            margin-left: 10px;
            border-radius: 5px;
            cursor: pointer;
        }

        .chat-send:hover {
            background-color: #45a049;
        }

        .chat-widget {
            position: fixed;
            bottom: 10px;
            right: 10px;
            z-index: 10000;
        }

        .chat-button {
            background-color: #4CAF50;
            color: white;
            padding: 15px;
            border-radius: 50%;
            border: none;
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .chat-button:hover {
            background-color: #45a049;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-15px);
            }
            100% {
                transform: translateY(0px);
            }
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .nav {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .home-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .home-content {
                margin: 0 auto;
            }

            .button-container {
                justify-content: center;
            }

            .visa-container {
                grid-template-columns: 1fr;
            }

            .visa-image {
                order: -1;
                margin-bottom: 30px;
                margin-top: 0;
            }

            .ebook-container {
                grid-template-columns: 1fr;
            }

            .ebook-image {
                order: -1;
                margin-bottom: 30px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            
            /* Hide desktop profile button on mobile */
             /*.profile-btn {
            }*/

            /* Show mobile profile section */
             /*  .mobile-profile-section,
            .mobile-auth-section {
            }*/
        }

        @media (max-width: 768px) {
            .header-container {
                padding: 15px 0;
            }

            .section-title {
                font-size: 28px;
            }

            .home-content h1 {
                font-size: 36px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .profile-slide {
                width: 80%;
                right: -100%;
            }

            .profile-content {
                padding: 20px 15px;
            }

            /*.actions-section {
                flex-direction: column;
            }*/

            .edit-modal {
                width: 95%;
                padding: 20px;
            }
        }

        @media (max-width: 576px) {
            .home-content h1 {
                font-size: 32px;
            }

            .section-title {
                font-size: 24px;
            }

            .points-container {
                grid-template-columns: 1fr;
            }
        }

        /* Desktop profile button visibility */
        @media (min-width: 993px) {
            .mobile-profile-section,
            .mobile-auth-section {
                display: none;
            }
        }